home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / mrpend.sql < prev    next >
Text File  |  2000-05-12  |  702b  |  19 lines

  1. /* RCSVER $Id: mrpend.sql,v 1.1 1999-11-19 13:48:46-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        mrpend
  6. * Date:        08/18/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the mrpend table.  This table contains
  9. *        unclosed moneyroom counts.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE mrpend
  13. (
  14.     subbatch_seq    NUMBER(38),    /* Subbatch number of this count */
  15.     prpend_indx    NUMBER(38),    /* Corresponding probe from */     
  16.                     /*  the prpend table */
  17.     CONSTRAINT pk_mrpend PRIMARY KEY (subbatch_seq)
  18. );
  19.